type golang.org/x/tools/internal/gcimporter.byPath

6 uses

	golang.org/x/tools/internal/gcimporter (current package)
		iimport.go#L319: 		sort.Sort(byPath(list))
		iimport.go#L1116: type byPath []*types.Package
		iimport.go#L1118: func (a byPath) Len() int           { return len(a) }
		iimport.go#L1119: func (a byPath) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
		iimport.go#L1120: func (a byPath) Less(i, j int) bool { return a[i].Path() < a[j].Path() }
		ureader_yes.go#L143: 	sort.Sort(byPath(imps))